

.godform-container {
    background: white;
    padding: 30px;
    /* border-radius: 10px; */
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    width: 80%;
    max-width: 800px;
    animation: fadeIn 1.5s ease-in-out;
}

h1, h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
    color: #555;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 16px;
    transition: border-color 0.3s;
}

input:focus, select:focus, textarea:focus {
    border-color: #6c63ff;
    outline: none;
}

input[type="date"], select {
    cursor: pointer;
}

button {
    padding: 10px 20px;
    background-color: #6c63ff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 20px;
}

button:hover {
    background-color: #5a53e0;
    transform: scale(1.1);
}

button:focus {
    outline: none;
}

button.remove-passenger-btn {
    background-color: #ff4747;
    margin-top: 10px;
    display: inline-block;
}

button.remove-passenger-btn:hover {
    background-color: #e04242;
    transform: scale(1.05);
}

#godnextBtn {
    background-color: #28a745;
}

#godnextBtn:hover {
    background-color: #218838;
}

#godsubmitButton {
    background-color: #007bff;
    display: none;
}

#godsubmitButton:hover {
    background-color: #0069d9;
}

/* Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

#godsection1,
#godsection2,
#godsection3,
#godsection4 {
    animation: slideInFromRight 1s ease-out;
}

/* Input Field Focus Animation */
input[type="text"]:focus, input[type="email"]:focus, input[type="date"]:focus, select:focus {
    animation: glow 0.5s ease-in-out infinite alternate;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 10px rgba(108, 99, 255, 0.7);
    }
    100% {
        box-shadow: 0 0 15px rgba(108, 99, 255, 1);
    }
}

/* Datalist Style */
datalist {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .godform-container {
        padding: 20px;
    }

    button {
        width: 100%;
    }
}
